home *** CD-ROM | disk | FTP | other *** search
- //----------------------------------------------------------------------------
- //Borland C++Builder
- //Copyright (c) 1987, 1997 Borland International Inc. All Rights Reserved.
- //----------------------------------------------------------------------------
- //---------------------------------------------------------------------------
- #ifndef CustOrdsH
- #define CustOrdsH
- //---------------------------------------------------------------------------
- #include <Classes.hpp>
- #include <Controls.hpp>
- #include <StdCtrls.hpp>
- #include <Forms.hpp>
- #include <DBCtrls.hpp>
- #include <Mask.hpp>
- #include <DBGrids.hpp>
- #include <Grids.hpp>
- //---------------------------------------------------------------------------
- class TfmCustOrd : public TForm
- {
- __published: // IDE-managed Components
- TDBEdit *DBEdit1;
- TDBGrid *DBGrid1;
- void __fastcall FormActivate(TObject *Sender);
- void __fastcall FormClose(TObject *Sender, TCloseAction &Action);
- void __fastcall DBGrid1Enter(TObject *Sender);
-
- private: // User declarations
- public: // User declarations
- virtual __fastcall TfmCustOrd(TComponent* Owner);
- };
- //---------------------------------------------------------------------------
- extern TfmCustOrd *fmCustOrd;
- //---------------------------------------------------------------------------
- #endif
-